diff --git a/application/config/routes.php b/application/config/routes.php index b837e152..e381e884 100644 --- a/application/config/routes.php +++ b/application/config/routes.php @@ -236,7 +236,7 @@ $route['Cashstatement']= "cashbook/cashreceipt"; $route['BankingFile']= "cashbook/bankfileupload"; //$route['Filelist']="cashbook/filelist"; //$route['Bankingrecord']= "cashbook/bankdata"; -//$route['Bankamountpaid']= "cashbook/amountpaid"; + $route['Bankamountpaid']= "cashbook/amountpaidsupplier"; $route['Bankamountunpaid']= "cashbook/amountunpaid"; //$route['Bankamountreceived']= "cashbook/amountreceived"; diff --git a/application/controllers/cashbook.php b/application/controllers/cashbook.php index a62510f0..b7a8b6b1 100644 --- a/application/controllers/cashbook.php +++ b/application/controllers/cashbook.php @@ -1131,6 +1131,7 @@ class cashbook extends BaseController $igrlineitem=$this->input->post('igrlineitem'); $sname = $this->input->post('sname'); + $sid = $this->input->post('sid'); $tot = $this->input->post('tot'); // echo'tot'.$tot; @@ -1207,9 +1208,9 @@ class cashbook extends BaseController $amtpaid= ($ip+$ePay); $IsActive=1; - $podata1 = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'Totalpoamount'=>$tot,'Amountpaid'=>$ip,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IGRLineItemNo'=>$igrlineitem,'IsActive'=>$IsActive); + $podata1 = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'SupplierID'=>$sid,'Totalpoamount'=>$tot,'Amountpaid'=>$ip,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IGRLineItemNo'=>$igrlineitem,'IsActive'=>$IsActive); - $podata = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'Totalpoamount'=>$tot,'Amountpaid'=>$amtpaid,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IGRLineItemNo'=>$igrlineitem,'IsActive'=>$IsActive); + $podata = array('Podate'=>$date,'PONO'=>$pono,'IGRNO'=>$igrno,'Suppliername'=>$sname,'SupplierID'=>$sid,'Totalpoamount'=>$tot,'Amountpaid'=>$amtpaid,'Balancetopay'=>$balancetopay,'mid'=>$bankid,'IGRLineItemNo'=>$igrlineitem,'IsActive'=>$IsActive); //die(); $result3 = $this->cashbook_model->getpono($igrlineitem); @@ -1259,6 +1260,7 @@ class cashbook extends BaseController $date = date_format($date,'Y-m-d'); $invid = $this->input->post('invid'); $cname = $this->input->post('cname'); + $cid = $this->input->post('cid'); $invamount = $this->input->post('invamount'); $invoicereceived = $this->input->post('ir'); $rowcount = $this->input->post('rc'); @@ -1334,9 +1336,9 @@ class cashbook extends BaseController $updateamount=($totalpaidamount+$eRec); $IsActive=1; - $invoicedata1 = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$amtpaid,'bankid'=>$bankid,'IsActive'=>$IsActive); + $invoicedata1 = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'customerid'=>$cid,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$amtpaid,'bankid'=>$bankid,'IsActive'=>$IsActive); - $invoicedata = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$ip,'bankid'=>$bankid,'IsActive'=>$IsActive); + $invoicedata = array('indate'=>$date,'invoiceno'=>$invid,'customername'=>$cname,'customerid'=>$cid,'totinvoiceamount'=>$invamount,'balancetoreceived'=>$balancetoreceived1,'amountreceived'=>$ip,'bankid'=>$bankid,'IsActive'=>$IsActive); // //print_r ($invoicedata); // //die(); @@ -1385,17 +1387,22 @@ class cashbook extends BaseController $m=$this->input->post('month'); $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); + $supplierID= $this->input->post('supplier'); + $data['supplierid']= $supplierID; $suppliername= $this->input->post('supplier'); + $data['suppliername']=$suppliername; // echo "FROM CON".$suppliername; $data['suppliername']= $suppliername; - $data['bankdebit'] = $this->cashbook_model->debitpolistfilter($suppliername,$fa,$aa,$m,$fdate,$tdate); + $data['bankdebit'] = $this->cashbook_model->debitpolistfilter($supplierID,$fa,$aa,$m,$fdate,$tdate); } else { - $suppliername= $_GET['sid']; - $data['suppliername']= $suppliername; - $data['bankdebit'] = $this->cashbook_model->paided($suppliername); + $supplierid= $_GET['sid']; + $data['supplierid']= $supplierid; + $suppliername= $_GET['sn']; + $data['suppliername']=$suppliername; + $data['bankdebit'] = $this->cashbook_model->paided($supplierid); } $data['finyear']=$this->cashbook_model->report_finyear(); //$data['supplier'] = $this->cashbook_model->getsupplier(); @@ -1446,6 +1453,7 @@ class cashbook extends BaseController { $data['bankdebitsupp'] = $this->cashbook_model->amountpaidsupplierwise(); + //$data['bankcashbook'] =$this->cashbook_model->amountpaidcashbook(); } $data['finyear']=$this->cashbook_model->report_finyear(); $data['supplier'] = $this->cashbook_model->getsupplier(); @@ -1472,7 +1480,7 @@ class cashbook extends BaseController { $data['bankunpaid'] = $this->cashbook_model->suppliertotal(); } - $data['finyear']=$this->cashbook_model->report_finyear(); + $data['finyear']=$this->cashbook_model->report_finyearunpaid(); $data['getsupplier'] = $this->cashbook_model->getsupplier(); $this->loadViews("bankunpaidsupp",$this->global,$data,NULL); @@ -1488,7 +1496,8 @@ class cashbook extends BaseController $ab=$this->input->post('financialyear'); $fa=substr($ab,0,-5); - $aa=substr($ab,5,5); + + $aa=substr($ab,5,5); $m=$this->input->post('month'); $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); @@ -1502,7 +1511,7 @@ class cashbook extends BaseController $data['suppliername']=$supplierid1; $data['bankunpaid'] = $this->cashbook_model->amountunpaid($supplierid1); } - $data['finyear']=$this->cashbook_model->report_finyear(); + $data['finyear']=$this->cashbook_model->report_finyearunpaid(); // $data['getsupplier'] = $this->cashbook_model->getsupplier(); $this->loadViews("bankamountunpaid",$this->global,$data,NULL); //die(); @@ -1526,23 +1535,27 @@ class cashbook extends BaseController $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); $clientname = $this->input->post('customer'); - $data['clientname']=$clientname; - $data['amountreceived'] = $this->cashbook_model->creditinvoicelistfilter($clientname,$fdate,$tdate,$fa,$aa,$m); + $data['clientname']=$clientname; + $clientid = $this->input->post('clientid'); + $data['clientid']=$clientid; + $data['amountreceived'] = $this->cashbook_model->creditinvoicelistfilter($clientid,$fdate,$tdate,$fa,$aa,$m); } else { - $clientname= $_GET['sid']; - $data['clientname']=$clientname; - $data['amountreceived'] = $this->cashbook_model->received($clientname); + $clientid= $_GET['sid']; + $data['clientid']=$clientid; + $cname= $_GET['cname']; + $data['clientname']=$cname; + $data['amountreceived'] = $this->cashbook_model->received($clientid); } $data['finyear']=$this->cashbook_model->report_finyearamountreceived(); $data['getcustomer'] = $this->cashbook_model->getcustomer(); $this->loadViews("bankamountreceived", $this->global,$data, NULL); } - public function bankreceivedsupp() - { - $this->global['pageTitle'] = 'Siddharth : Bank Report - Received Amount Details supplierwise'; + public function bankreceivedsupp() + { + $this->global['pageTitle'] = 'Siddharth : Bank Report - Received Amount Details supplierwise'; if ($this->input->post('btn_submit')) { @@ -1572,10 +1585,11 @@ class cashbook extends BaseController { $ab=$this->input->post('financialyear'); + $fa=substr($ab,0,-5); $aa=substr($ab,5,5); $m=$this->input->post('month'); - //$Customer = $this->input->post('CustomerName'); + $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); @@ -1586,7 +1600,7 @@ class cashbook extends BaseController $data['amountunreceivedsupplier'] = $this->cashbook_model->unreceivedsupplier(); } - $data['finyear']=$this->cashbook_model->report_finyearamountreceived(); + $data['finyear']=$this->cashbook_model->report_finyearamountunreceived(); $data['getcustomer'] = $this->cashbook_model->getcustomer(); $this->loadViews("bankunreceivedsupp", $this->global,$data, NULL); diff --git a/application/logs/log-2018-10-22.php b/application/logs/log-2018-10-22.php index fb99bf72..73c88a99 100644 --- a/application/logs/log-2018-10-22.php +++ b/application/logs/log-2018-10-22.php @@ -11328,3 +11328,369 @@ ERROR - 2018-10-22 13:58:48 --> Severity: Notice --> Undefined property: stdCla ERROR - 2018-10-22 13:58:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 ERROR - 2018-10-22 13:58:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 ERROR - 2018-10-22 13:58:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 15:56:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 15:56:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 15:56:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-22 15:56:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-22 15:56:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-22 16:08:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 16:08:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 16:08:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-22 16:08:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-22 16:08:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-22 16:20:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 16:20:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 16:20:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-22 16:20:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-22 16:20:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-22 16:30:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 16:30:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-22 16:30:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-22 16:30:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-22 16:30:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 2 +ERROR - 2018-10-22 16:30:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 2 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 78 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 80 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:30:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-22 16:31:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-22 16:31:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 diff --git a/application/logs/log-2018-10-23.php b/application/logs/log-2018-10-23.php new file mode 100644 index 00000000..d9c47a69 --- /dev/null +++ b/application/logs/log-2018-10-23.php @@ -0,0 +1,26497 @@ + + +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 07:00:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 07:00:32 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 07:00:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 07:00:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 07:00:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 08:26:57 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 616 +ERROR - 2018-10-23 08:26:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 623 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-23 08:26:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-23 08:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-23 08:27:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-23 08:27:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-23 08:27:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-23 08:27:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-23 08:27:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-23 08:27:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-23 08:27:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 08:32:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 08:32:22 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 08:32:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 08:32:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 08:34:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 08:34:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 08:42:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 08:42:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 08:42:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 08:49:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 08:49:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 08:49:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 08:49:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 08:49:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 08:49:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 08:49:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 08:49:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 11 +ERROR - 2018-10-23 08:49:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 11 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 297 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 297 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 331 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 331 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 08:49:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 09:06:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 09:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 09:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 09:06:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:06:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:06:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:07:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 175 +ERROR - 2018-10-23 09:07:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 177 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:14:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:14:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:15:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:15:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:16:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:21:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:22:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:24:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:25:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:30:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:30:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:30:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:31:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:31:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:34:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:34:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:35:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:37:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:39:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:39:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:41:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 09:41:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:41:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 09:42:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 11:44:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-23 11:44:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-23 11:44:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-23 11:44:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-23 11:44:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-23 12:07:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 2 +ERROR - 2018-10-23 12:07:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 2 +ERROR - 2018-10-23 12:07:23 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 78 +ERROR - 2018-10-23 12:07:23 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 80 +ERROR - 2018-10-23 12:07:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-10-23 12:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-10-23 12:07:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 12:07:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 12:07:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 12:07:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 12:07:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 12:20:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:20:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:20:11 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:20:12 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:22:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:22:36 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:23:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:23:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:23:23 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:23:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:23:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:23:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:23:24 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:23:24 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:23:24 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:23:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:23:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:23:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:23:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:23:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:23:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:23:40 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 12:23:40 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 12:23:41 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 12:23:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:23:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:23:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 12:23:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 12:23:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 12:23:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 12:23:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 12:24:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 12:24:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 12:24:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:24:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:24:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:24:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:24:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 12:24:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 12:26:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 12:26:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 12:26:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:26:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:26:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:26:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:26:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 12:26:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 12:27:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 12:27:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 12:27:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:27:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:27:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:27:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 12:27:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 12:27:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 12:27:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-23 12:27:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-23 12:27:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-23 12:27:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-23 12:27:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:27:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:27:49 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:30:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:30:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:30:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:30:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:30:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:30:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:30:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:30:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:30:46 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 12:30:46 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 12:30:47 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 12:30:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:30:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:34:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:34:05 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:35:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:35:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:35:27 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:35:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:35:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:35:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:35:28 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:35:28 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:35:28 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:35:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:35:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:35:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:35:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:35:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:35:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:35:47 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 12:35:47 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 583 +ERROR - 2018-10-23 12:35:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 583 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 814 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 814 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 814 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 814 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 822 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 831 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 849 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 865 +ERROR - 2018-10-23 12:35:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 865 +ERROR - 2018-10-23 12:36:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:36:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 12:36:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:36:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 12:36:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 12:36:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 12:36:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 12:36:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:36:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 12:37:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:37:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:37:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:37:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:37:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 12:37:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 12:37:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 12:37:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 12:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 12:38:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 12:38:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 12:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 12:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 12:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 12:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 12:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 12:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 12:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 12:38:20 --> Severity: Notice --> Undefined variable: cb C:\xampp\htdocs\siddharth_application\application\views\bankcashnew.php 395 +ERROR - 2018-10-23 12:38:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankcashnew.php 395 +ERROR - 2018-10-23 12:38:20 --> Severity: Notice --> Undefined variable: supplier C:\xampp\htdocs\siddharth_application\application\views\bankcashnew.php 992 +ERROR - 2018-10-23 12:39:11 --> Severity: Notice --> Use of undefined constant CREDIT - assumed 'CREDIT' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 362 +ERROR - 2018-10-23 12:39:11 --> Severity: Notice --> Use of undefined constant PAYMENT - assumed 'PAYMENT' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 369 +ERROR - 2018-10-23 12:39:11 --> Severity: Notice --> Use of undefined constant DEBIT - assumed 'DEBIT' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 370 +ERROR - 2018-10-23 12:39:12 --> Severity: Notice --> Use of undefined constant Bank - assumed 'Bank' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 439 +ERROR - 2018-10-23 12:39:12 --> Severity: Notice --> Use of undefined constant Bank - assumed 'Bank' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 441 +ERROR - 2018-10-23 12:39:12 --> Severity: Notice --> Use of undefined constant Bank - assumed 'Bank' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 504 +ERROR - 2018-10-23 12:39:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:39:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:39:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:39:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 12:39:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 12:39:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 12:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 11 +ERROR - 2018-10-23 12:39:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 11 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 12:39:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Undefined variable: ap C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 430 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 12:39:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-23 12:39:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:39:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 12:39:37 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:39:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 12:39:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 12:39:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 12:39:38 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:39:38 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:39:38 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 12:42:08 --> Severity: Warning --> Missing argument 3 for cashbook_model::getIncomeExpense(), called in C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php on line 101 and defined C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 61 +ERROR - 2018-10-23 12:42:08 --> Severity: Warning --> Missing argument 4 for cashbook_model::getIncomeExpense(), called in C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php on line 101 and defined C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 61 +ERROR - 2018-10-23 12:42:08 --> Severity: Notice --> Undefined variable: frmdt C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 76 +ERROR - 2018-10-23 12:52:07 --> Severity: Warning --> Missing argument 3 for cashbook_model::getIncomeExpense(), called in C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php on line 101 and defined C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 61 +ERROR - 2018-10-23 12:52:07 --> Severity: Warning --> Missing argument 4 for cashbook_model::getIncomeExpense(), called in C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php on line 101 and defined C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 61 +ERROR - 2018-10-23 12:52:07 --> Severity: Notice --> Undefined variable: frmdt C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 76 +ERROR - 2018-10-23 13:09:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:09:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:09:04 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:09:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:09:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:09:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:09:05 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:09:05 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:09:05 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:10:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:00 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:01 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:01 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:01 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:01 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:01 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:01 --> Severity: Notice --> Undefined property: stdClass::$name C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 246 +ERROR - 2018-10-23 13:10:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:10:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:10:53 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:10:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:10:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:10:53 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:53 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:10:54 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:12:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:12:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:12:24 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:12:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:12:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:12:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:12:24 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:12:24 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:12:25 --> Severity: Notice --> Undefined property: stdClass::$cashbookamount C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 235 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:13:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:13:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:13:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:06 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:07 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:13:07 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:13 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:14:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:14:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:14 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:15 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:15 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:14:47 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:15:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:15:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:15:36 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:15:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 186 +ERROR - 2018-10-23 13:15:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:15:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 193 +ERROR - 2018-10-23 13:15:36 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:15:36 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:15:37 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:16:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:16:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:16:39 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 13:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 13:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:16:40 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:16:40 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:16:40 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:16:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:16:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:16:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:16:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:16:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:16:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:16:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:16:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:19:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:19:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:19:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:20:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:20:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:21:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:21:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:22:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:22:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:24:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:25:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:25:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:26:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:26:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:26:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:27:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:27:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:34:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:34:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:34:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:34:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:34:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:34:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:34:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:34:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:34:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:34:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:34:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:35:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:35:56 --> Query error: Unknown column 'SupplierID' in 'field list' +ERROR - 2018-10-23 13:37:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:37:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:37:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:38:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:39:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-23 13:45:51 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1249 +ERROR - 2018-10-23 13:45:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:45:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:45:51 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-10-23 13:45:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-10-23 13:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:45:52 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-10-23 13:45:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-10-23 13:45:53 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-10-23 13:45:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:45:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:45:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:45:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:45:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:45:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:45:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:45:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:45:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:45:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:45:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:45:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:45:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:45:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:45:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:45:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:45:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:45:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:47:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 13:47:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 13:47:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 13:47:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 13:47:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 13:47:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:47:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:47:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:47:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 13:47:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:47:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 13:47:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:47:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 13:47:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:47:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:47:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 13:47:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:47:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:47:20 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 13:47:20 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:47:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:47:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:48:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 176 +ERROR - 2018-10-23 13:48:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:54:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:54:35 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 13:54:35 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 13:54:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:36 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:37 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:54:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:55:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 13:55:49 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 13:55:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:07:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:27 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:07:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:09:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:09:28 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 14:09:28 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 14:09:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:09:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:09:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:12:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:12:44 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 14:12:44 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 14:12:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:12:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:13:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:13:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:14:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:14:16 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:14:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:14:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:16:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 2 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 80 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 82 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 177 +ERROR - 2018-10-23 14:16:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankinvoice.php 178 +ERROR - 2018-10-23 14:16:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 14:16:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 14:16:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 14:16:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-23 14:16:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 14:16:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-23 14:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 14:16:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-23 14:16:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 14:16:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:20:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 14:20:41 --> Severity: Notice --> Undefined property: stdClass::$SupplierID C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 172 +ERROR - 2018-10-23 14:22:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:22:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:22:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:22:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:22:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:23:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:23:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:23:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:23:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:23:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:24:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:24:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:24:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:24:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:24:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:26:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:26:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:26:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:26:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:26:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:26:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:26:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:26:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:26:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:26:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:27:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:27:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:27:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:27:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:27:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:28:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:28:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:28:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:28:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:28:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:29:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:29:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:29:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 14:29:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 14:32:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:32:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-23 14:32:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-23 14:32:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-23 14:32:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-23 14:32:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 14:32:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 14:32:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-23 14:36:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:36:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:36:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:36:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:36:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:38:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:38:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:38:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:38:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:38:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:39:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:39:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:39:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:39:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:39:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:40:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:40:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:40:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:40:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:40:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:40:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:40:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:43:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:43:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:43:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:43:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:43:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:43:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:43:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:43:22 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:43:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:43:22 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:43:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:43:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:43:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:43:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:43:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:43:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:43:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:43:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:45:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:45:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:45:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:45:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:45:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:46:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:46:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:46:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:46:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:46:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:48:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:48:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-23 14:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-23 14:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-23 14:48:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-23 14:48:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:48:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:48:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:48:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:48:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:48:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:48:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:48:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:48:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:48:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:48:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:48:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:48:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:57:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:57:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:58:49 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.balancetoreceived, `bm`.`amountreceived`, `bm`.`ID`, `br`.`Credit`, `br`.`cclea' at line 1 +ERROR - 2018-10-23 14:59:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:59:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:59:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:59:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:59:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:59:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-23 14:59:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:59:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-23 14:59:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:59:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:59:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-23 14:59:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 diff --git a/application/logs/log-2018-10-24.php b/application/logs/log-2018-10-24.php new file mode 100644 index 00000000..b2b1f3ad --- /dev/null +++ b/application/logs/log-2018-10-24.php @@ -0,0 +1,5413 @@ + + +ERROR - 2018-10-24 06:46:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:46:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:46:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 06:46:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 06:46:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:46:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 06:46:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:48:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 06:48:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-24 06:49:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-24 06:49:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 11 +ERROR - 2018-10-24 06:49:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 11 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 297 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 297 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 331 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 331 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 285 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 286 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 341 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 431 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlement.php 438 +ERROR - 2018-10-24 06:53:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:53:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:53:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 06:53:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 06:53:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 06:53:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:53:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:53:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:53:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 06:53:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 06:53:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 06:53:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:53:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 06:53:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:56:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 06:56:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1393 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:05:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 254 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 254 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 286 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 286 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:05:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:08:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:08:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:08:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:08:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:08:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:08:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:08:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:08:36 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:08:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:08:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:08:36 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:09:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:09:48 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:09:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:48 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:09:58 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:09:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:09:58 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:11:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:11:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:12:25 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:12:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:12:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:12:25 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:13:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:13:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:13:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:13:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1402 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:13:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:13:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:13:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:14:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:14:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:14:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:14:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:14:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:14:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:14:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:14:58 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:14:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:14:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:14:58 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:15:04 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:15:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:15:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:15:05 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:15:08 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:15:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:15:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:15:08 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:15:10 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:15:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:15:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:15:10 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:16:33 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:16:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:16:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:16:33 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:16:39 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:16:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:16:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:16:40 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:17:28 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:17:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:17:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:17:28 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:17:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:17:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:17:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:17:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:17:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:17:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:17:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:18:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:18:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:19:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:19:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:19:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:19:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:19:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:19:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:19:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:20:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:20:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:20:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:20:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:20:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:21:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:21:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:21:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:21:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:21:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:22:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:22:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:23:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined variable: supplieridfilter C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:23:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:24:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:24:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:24:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:24:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:24:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:24:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:25:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:25:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:25:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:25:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:25:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined variable: customerid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:25:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:26:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:26:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:29:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:29:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:29:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:29:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:29:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:41 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1400 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 5 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:29:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 103 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:29:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:32:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:32:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-24 07:32:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 180 +ERROR - 2018-10-24 07:32:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 181 +ERROR - 2018-10-24 07:32:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 187 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:32:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:32:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1392 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:32:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Undefined variable: supplierid C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 107 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:32:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 249 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 258 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 276 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:33:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1393 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:33:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:33:21 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1393 +ERROR - 2018-10-24 07:33:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Undefined variable: suppliername C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1393 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 241 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:33:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 292 +ERROR - 2018-10-24 07:34:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:34:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:34:32 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:34:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:34:32 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:34:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:34:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:34:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 250 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 259 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 277 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:21 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:21 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:21 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:36 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-24 07:35:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-24 07:35:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:35:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 293 +ERROR - 2018-10-24 07:36:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:36:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:36:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:36:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:36:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:36:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:36:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:36:19 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-24 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-24 07:36:19 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-24 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 250 +ERROR - 2018-10-24 07:36:19 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-24 07:36:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 257 +ERROR - 2018-10-24 07:49:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:49:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:49:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:49:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:49:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:49:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:49:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:49:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:52:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:52:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:52:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:52:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:52:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-10-24 07:52:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 182 +ERROR - 2018-10-24 07:52:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 183 +ERROR - 2018-10-24 07:52:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 189 +ERROR - 2018-10-24 07:52:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:52:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:52:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:52:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:52:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 07:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 07:53:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:53:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:53:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:53:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:53:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:53:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:53:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:53:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:54:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:54:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:54:41 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:41 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:41 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 07:54:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 07:54:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:54:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:54:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:54:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 07:54:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 07:56:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:56:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 07:56:33 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:56:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:56:33 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:56:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 07:56:33 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 07:56:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 08:01:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 08:01:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-10-24 08:01:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 08:01:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 08:01:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 08:01:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-10-24 08:01:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 08:01:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-10-24 08:01:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:01:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:01:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:01:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:01:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:01:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:01:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:01:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:01:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:01:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:05:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:05:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:05:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:05:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:05:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:05:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:05:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:05:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:05:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:05:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:05:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:05:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:16:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:16:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:16:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:16:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:16:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:16:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:16:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:16:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:16:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:16:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:16:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:16:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:17:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:17:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:17:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:17:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:17:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:17:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:17:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:17:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:17:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:17:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:18:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:18:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:18:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:18:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:18:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:18:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:18:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:18:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:18:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:18:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:18:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:18:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:20:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:20:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:20:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:20:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:20:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:21:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:21:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:21:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:21:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:21:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:21:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:21:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:21:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:21:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:21:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:21:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:21:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:21:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:21:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:21:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:22:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:22:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:22:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:22:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:22:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:23:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:23:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:23:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:23:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:23:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:23:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:23:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:23:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:24:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:24:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:24:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:24:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:24:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:24:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:24:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 2 +ERROR - 2018-10-24 08:24:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 165 +ERROR - 2018-10-24 08:24:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 166 +ERROR - 2018-10-24 08:24:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 172 +ERROR - 2018-10-24 08:29:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 57 +ERROR - 2018-10-24 08:29:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 162 +ERROR - 2018-10-24 08:29:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 163 +ERROR - 2018-10-24 08:29:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 169 +ERROR - 2018-10-24 08:31:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:31:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:31:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:32:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:32:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:32:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:32:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:32:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:32:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:34:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:34:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:34:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:35:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:35:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:35:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:35:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:35:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:35:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:35:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:35:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:35:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:35:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:35:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:35:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:35:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-10-24 08:35:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-10-24 08:35:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-10-24 08:36:05 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 631 +ERROR - 2018-10-24 08:36:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 638 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:36:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:36:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:36:15 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:36:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:40:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:40:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:42:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:42:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:42:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:42:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-24 08:42:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-24 08:42:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:42:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:42:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:42:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:42:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:08 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:43:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:43:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:43:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:43:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 308 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:44:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:24 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:29 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:32 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:33 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:34 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:35 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:44:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:48 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:49 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:50 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:51 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:53 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:54 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:44:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:45:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:57 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:45:59 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:00 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:03 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:04 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:05 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:09 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:10 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:12 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:14 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:18 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:20 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:21 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:22 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$file C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$Fpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 280 +ERROR - 2018-10-24 08:46:23 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 298 diff --git a/application/models/cashbook_model.php b/application/models/cashbook_model.php index d31c9de0..13a1ae6f 100644 --- a/application/models/cashbook_model.php +++ b/application/models/cashbook_model.php @@ -37,7 +37,21 @@ class cashbook_model extends CI_Model // $r = $this->db->affected_rows(); // return $r; // } - + // function amountpaidcashbook() + // { + // $this->db->select('t_accountcode.name,total,cashtype,T_Employee_Details.FirstName,T_Employee_Details.LastName,t_income_expense.*'); + // $this->db->from('t_income_expense'); + // $this->db->join('t_accountcode','t_income_expense.account_code=t_accountcode.code','left'); + // $this->db->join('tbl_users','t_income_expense.Created_By=tbl_users.userId','left'); + // $this->db->join('T_Employee_Details','tbl_users.EmpID=T_Employee_Details.EmpID','left'); + // $this->db->where('t_income_expense.IsActive',1); + // $this->db->where('t_income_expense.account_code !=','ADV001'); + // $this->db->group_by('t_income_expense.account_code'); + // // $this->db->order_by("date","desc"); + // $r = $this->db->get(); + // return $r->result(); + + // } function getIncomeExpenseList($i="") { // echo $i; @@ -290,6 +304,21 @@ GROUP BY financial_year"; +} +function report_finyearunpaid(){ + + + $sql="SELECT +CASE WHEN MONTH(MaterialRcvdDate)>=4 THEN + concat(YEAR(MaterialRcvdDate), '-',YEAR(MaterialRcvdDate)+1) +ELSE concat(YEAR(MaterialRcvdDate)-1,'-', YEAR(MaterialRcvdDate)) END AS financial_year +FROM T_IGR_Master +GROUP BY financial_year"; + $query = $this->db->query($sql); + return $query->result(); + + + } function report_finyearamountreceived(){ @@ -306,6 +335,7 @@ GROUP BY financial_year"; } + function report_finyearamountunreceived(){ @@ -376,7 +406,7 @@ function clearedcreditbalance(){ function debitbankstatemet($Supplierid,$fdate,$tdate){ - $sql="select im.IGRNO as igrn,pm.POType as potype,im.PONO as PONO,im.IGRNO,id.IGRItemNo,im.MaterialRcvdDate as CreatedDate,br.Balancetopay,br.Amountpaid,sd.SupplierName as SupplierName, + $sql="select im.IGRNO as igrn,pm.POType as potype,im.PONO as PONO,im.IGRNO,id.IGRItemNo,im.MaterialRcvdDate as CreatedDate,br.Balancetopay,br.Amountpaid,sd.SupplierName as SupplierName,sd.SupplierID as SupplierID, round(ifnull(if(POType = 'REVENUE', (id.QuantityAsPerInvoice * pl.Rate)+((id.QuantityAsPerInvoice * pl.Rate)*(rt.SGST/100)), (id.QuantityAsPerInvoice * pl.Rate)+((id.QuantityAsPerInvoice * pl.Rate)*(st.SGST /100))),0),2) as sgst, @@ -452,7 +482,7 @@ $sql.="group by id.IGRItemNo"; function debitbankstatemet1(){ - $sql="select im.IGRNO as igrn,pm.POType as potype,im.PONO as PONO,im.IGRNO,id.IGRItemNo,im.MaterialRcvdDate as CreatedDate,br.Balancetopay,br.Amountpaid,sd.SupplierName as SupplierName, + $sql="select im.IGRNO as igrn,pm.POType as potype,im.PONO as PONO,im.IGRNO,id.IGRItemNo,im.MaterialRcvdDate as CreatedDate,br.Balancetopay,br.Amountpaid,sd.SupplierName as SupplierName,sd.SupplierID as SupplierID, round(ifnull(if(POType = 'REVENUE', (id.QuantityAsPerInvoice * pl.Rate)+((id.QuantityAsPerInvoice * pl.Rate)*(rt.SGST/100)), (id.QuantityAsPerInvoice * pl.Rate)+((id.QuantityAsPerInvoice * pl.Rate)*(st.SGST /100))),0),2) as sgst, @@ -872,7 +902,7 @@ $sql.="group by id.IGRItemNo"; { // $status='ST065'; $this->db->distinct(); - $this->db->select('iva.invoice_id,iva.invoice_total,iv.invoice_date_created,iv.invoice_number,iva.invoice_paid,ic.client_name,BI.balancetoreceived,BI.amountreceived'); + $this->db->select('iva.invoice_id,iva.invoice_total,iv.invoice_date_created,iv.invoice_number,iva.invoice_paid,ic.client_name,ic.client_id,BI.balancetoreceived,BI.amountreceived'); $this->db->from ('ip_invoice_amounts iva'); $this->db->join ('ip_invoices iv','iva.invoice_id = iv.invoice_id'); $this->db->join ('ip_clients ic','iv.client_id = ic.client_id','left'); @@ -940,7 +970,7 @@ function receiptdata() - function debitpolistfilter($suppliername,$fa,$aa,$m,$fdate,$tdate) + function debitpolistfilter($supplierID,$fa,$aa,$m,$fdate,$tdate) { // echo $suppliername+'sn'; $this->db->select('bm.id,bm.mid,bm.Podate,bm.PONO,bm.Suppliername,bm.Totalpoamount, @@ -953,7 +983,7 @@ function receiptdata() $this->db->join('T_Inwardgateregister_fileupload inward','inward.IGRNO =igrm.IGRNO','left'); $this->db->join ('T_PurchaseOrder_BillUpload bu','bm.PONO=bu.PONO','left'); $this->db->where('bm.IsActive',1); - $this->db->where('bm.Suppliername',$suppliername); + $this->db->where('bm.SupplierID',$supplierID); if ($fa and $aa != ''){ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; @@ -1049,7 +1079,7 @@ function receiptdata() return $query->result(); } - function creditinvoicelistfilter($clientname,$fdate,$tdate,$fa,$aa,$m) + function creditinvoicelistfilter($clientid,$fdate,$tdate,$fa,$aa,$m) { @@ -1060,7 +1090,7 @@ function receiptdata() $this->db->join ('ip_clients ic','ic.client_name = bm.customername','left'); $this->db->join('T_bankreport br','br.ID = bm.bankid'); $this->db->where('bm.IsActive',1); - $this->db->where('bm.customername',$clientname); + $this->db->where('bm.customerid',$clientid); if ($fa and $aa != ''){ //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; @@ -1410,7 +1440,7 @@ function receiptdata() return TRUE; } - function paided($suppliername) + function paided($supplierid) { $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.Totalpoamount,bm.Podate, bm.Balancetopay,bm.Amountpaid,bm.IGRNO,bm.IGRLineItemNo,br.Balancetocleared,br.Clearbalance'); @@ -1418,7 +1448,7 @@ function receiptdata() $this->db->join('T_Inwardgateregister_fileupload inward','inward.IGRNO =bm.IGRNO','left'); $this->db->join('T_PurchaseOrder_BillUpload bu','bm.PONO=bu.PONO','left'); $this->db->join('T_bankreport br','br.ID=bm.mid','left'); - $this->db->where('bm.Suppliername',$suppliername); + $this->db->where('bm.SupplierID',$supplierid); $this->db->where('bm.IsActive',1); $this->db->group_by('bm.IGRLineItemNo'); $query = $this->db->get(); @@ -1427,10 +1457,10 @@ function receiptdata() } function amountpaidsupplierwise() { - $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.Totalpoamount,bm.Podate, + $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.SupplierID,bm.Totalpoamount,bm.Podate, bm.Balancetopay,sum(bm.Amountpaid) as Amountpaid,bm.IGRNO,bm.IGRLineItemNo'); $this->db->from ('T_Bankporeport bm'); - $this->db->group_by('bm.Suppliername'); + $this->db->group_by('bm.SupplierID'); $query = $this->db->get(); return $query->result(); @@ -1438,7 +1468,7 @@ function receiptdata() } function amountpaidsupplierwisefilter($fa,$aa,$m,$fdate,$tdate) { - $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,sum(bm.Totalpoamount)as Totalpoamount, + $this->db->select('bm.id,bm.mid,bm.PONO,bm.Suppliername,bm.SupplierID,sum(bm.Totalpoamount)as Totalpoamount, bm.Balancetopay,sum(bm.Amountpaid) as Amountpaid,bm.Podate,bm.IGRLineItemNo'); $this->db->from ('T_Bankporeport bm'); @@ -1466,7 +1496,7 @@ function receiptdata() } - $this->db->group_by('bm.Suppliername'); + $this->db->group_by('bm.SupplierID'); $query = $this->db->get(); return $query->result(); @@ -1485,14 +1515,14 @@ function receiptdata() // // return $result; // } - function received($clientname) + function received($clientid) { - $this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid, + $this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,bm.customerid, bm.balancetoreceived,bm.amountreceived,bm.ID,br.Credit,br.cclearbalance,br.cbalancetocleared'); $this->db->from ('T_Bankinvoicereport bm'); $this->db->join('T_bankreport br','br.ID=bm.bankid'); $this->db->where('bm.IsActive',1); - $this->db->where('bm.customername',$clientname); + $this->db->where('bm.customerid',$clientid); //$this->db->group_by('invoiceno'); $query = $this->db->get(); return $query->result(); @@ -1501,19 +1531,19 @@ function receiptdata() function creditinvoicesupplierwise() { - $this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,ic.client_id, + $this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,ic.client_id,bm.customerid as customerid, bm.balancetoreceived,sum(bm.amountreceived)as amountreceived,bm.ID,br.Credit,br.cclearbalance,br.cbalancetocleared'); $this->db->from ('T_Bankinvoicereport bm'); $this->db->join('T_bankreport br','br.ID=bm.bankid'); $this->db->join('ip_clients ic','ic.client_name=bm.customername','left'); $this->db->where('bm.IsActive',1); - $this->db->group_by('bm.customername'); + $this->db->group_by('bm.customerid'); $query = $this->db->get(); return $query->result(); } function creditinvoicewisefilter($fdate,$tdate,$fa,$aa,$m) { - $this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.totinvoiceamount,bm.bankid,ic.client_id, + $this->db->select('bm.indate,bm.invoiceno,bm.customername,bm.customerid as customerid,bm.totinvoiceamount,bm.bankid,ic.client_id, bm.balancetoreceived,sum(bm.amountreceived)as amountreceived,bm.ID,br.Credit,br.cclearbalance,br.cbalancetocleared'); $this->db->from ('T_Bankinvoicereport bm'); $this->db->join('T_bankreport br','br.ID=bm.bankid'); @@ -1542,7 +1572,7 @@ function receiptdata() $this->db->where($date); } - $this->db->group_by('bm.customername'); + $this->db->group_by('bm.customerid'); $query = $this->db->get(); return $query->result(); } diff --git a/application/views/bankamountpaid.php b/application/views/bankamountpaid.php index cafb031f..333c684c 100644 --- a/application/views/bankamountpaid.php +++ b/application/views/bankamountpaid.php @@ -104,7 +104,8 @@ if(!empty($amountpaid))