diff --git a/application/controllers/cashbook.php b/application/controllers/cashbook.php index fd1b886a..0ad307f5 100644 --- a/application/controllers/cashbook.php +++ b/application/controllers/cashbook.php @@ -1397,11 +1397,17 @@ class cashbook extends BaseController } else { - $supplierid= $_GET['sid']; - $data['supplierid']= $supplierid; - $suppliername= $_GET['sn']; - $data['suppliername']=$suppliername; - $data['bankdebit'] = $this->cashbook_model->paided($supplierid); + + $fa=$_GET['fa']; + $aa=$_GET['aa']; + $m=$_GET['m']; + $fdate=$_GET['fdate']; + $tdate=$_GET['tdate']; + $supplierid= $_GET['sid']; + $data['supplierid']= $supplierid; + $suppliername= $_GET['sn']; + $data['suppliername']=$suppliername; + $data['bankdebit'] = $this->cashbook_model->paided($supplierid,$fa,$aa,$m,$fdate,$tdate); } $data['finyear']=$this->cashbook_model->report_amountpaid(); $this->loadViews("bankamountpaid", $this->global,$data, NULL); @@ -1432,11 +1438,16 @@ class cashbook extends BaseController } else { - $accountcode= $_GET['ac']; + $fa=$_GET['fa']; + $aa=$_GET['aa']; + $m=$_GET['m']; + $fdate=$_GET['fdate']; + $tdate=$_GET['tdate']; + $accountcode= $_GET['ac']; $data['accountcode']= $accountcode; $accountname= $_GET['an']; $data['accountname']=$accountname; - $data['bankmappingcash'] = $this->cashbook_model->mappingcash($accountcode); + $data['bankmappingcash'] = $this->cashbook_model->mappingcash($accountcode,$fa,$aa,$m,$fdate,$tdate); } $data['finyear']=$this->cashbook_model->report_cashbook(); $this->loadViews("banksettlementcash", $this->global,$data, NULL); @@ -1467,11 +1478,16 @@ class cashbook extends BaseController } else { + $fa=$_GET['fa']; + $aa=$_GET['aa']; + $m=$_GET['m']; + $fdate=$_GET['fdate']; + $tdate=$_GET['tdate']; $accountcode= $_GET['ac']; $data['accountcode']= $accountcode; $accountname= $_GET['an']; $data['accountname']=$accountname; - $data['bankmappingcash'] = $this->cashbook_model->mappingcashreceived($accountcode); + $data['bankmappingcash'] = $this->cashbook_model->mappingcashreceived($accountcode,$fa,$aa,$m,$fdate,$tdate); } $data['finyear']=$this->cashbook_model->report_cashbook(); $this->loadViews("banksettlementcredit", $this->global,$data, NULL); @@ -1514,6 +1530,11 @@ class cashbook extends BaseController $m=$this->input->post('month'); $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); + $data['fa']=$fa; + $data['aa']=$aa; + $data['m']= $m; + $data['fdate']= $fdate; + $data['tdate']=$tdate; $data['bankdebitsupp'] = $this->cashbook_model->amountpaidsupplierwisefilter($fa,$aa,$m,$fdate,$tdate); $data['amountpaidcashbook']=$this->cashbook_model->amountpaidcashbookfilter($fa,$aa,$m,$fdate,$tdate); } @@ -1542,7 +1563,11 @@ class cashbook extends BaseController $m=$this->input->post('month'); $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); - + $data['fa']= $fa; + $data['aa']=$aa; + $data['m']=$m; + $data['fdate']=$fdate; + $data['tdate']=$tdate; $data['bankunpaid'] = $this->cashbook_model->suppliertotalfilter($fa,$aa,$m,$fdate,$tdate); } else @@ -1577,8 +1602,15 @@ class cashbook extends BaseController else { $supplierid1 = $_GET['sid']; + $fa=$_GET['fa']; + $aa=$_GET['aa']; + $m=$_GET['m']; + $fdate=$_GET['fdate']; + $tdate=$_GET['tdate']; + $data['suppliername']=$supplierid1; - $data['bankunpaid'] = $this->cashbook_model->amountunpaid($supplierid1); + + $data['bankunpaid'] = $this->cashbook_model->amountunpaid($supplierid1,$fa,$aa,$m,$fdate,$tdate); } $data['finyear']=$this->cashbook_model->report_finyearunpaid(); // $data['getsupplier'] = $this->cashbook_model->getsupplier(); @@ -1611,11 +1643,17 @@ class cashbook extends BaseController } else { + + $fa=$_GET['fa']; + $aa=$_GET['aa']; + $m=$_GET['m']; + $fdate=$_GET['fdate']; + $tdate=$_GET['tdate']; $clientid= $_GET['sid']; $data['clientid']=$clientid; $cname= $_GET['cname']; $data['clientname']=$cname; - $data['amountreceived'] = $this->cashbook_model->received($clientid); + $data['amountreceived'] = $this->cashbook_model->received($clientid,$fdate,$tdate,$fa,$aa,$m); } $data['finyear']=$this->cashbook_model->report_finyearamountreceived(); $data['getcustomer'] = $this->cashbook_model->getcustomer(); @@ -1635,6 +1673,11 @@ class cashbook extends BaseController //$Customer = $this->input->post('CustomerName'); $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); + $data['fa']= $fa; + $data['aa']=$aa; + $data['m']=$m; + $data['fdate']=$fdate; + $data['tdate']=$tdate; $data['amountreceivedsupplier'] = $this->cashbook_model->creditinvoicewisefilter($fdate,$tdate,$fa,$aa,$m); $data['amountpaidcashbook']=$this->cashbook_model->amountreceivedcashbookfilter($fa,$aa,$m,$fdate,$tdate); @@ -1660,10 +1703,13 @@ class cashbook extends BaseController $fa=substr($ab,0,-5); $aa=substr($ab,5,5); $m=$this->input->post('month'); - $fdate = $this->input->post('from_date'); $tdate = $this->input->post('to_date'); - + $data['fa']= $fa; + $data['aa']=$aa; + $data['m']=$m; + $data['fdate']=$fdate; + $data['tdate']=$tdate; $data['amountunreceivedsupplier'] = $this->cashbook_model->uncreditinvoicewisefilter($fdate,$tdate,$fa,$aa,$m); } else @@ -1697,9 +1743,14 @@ class cashbook extends BaseController } else { + $fa=$_GET['fa']; + $aa=$_GET['aa']; + $m=$_GET['m']; + $fdate=$_GET['fdate']; + $tdate=$_GET['tdate']; $clientname=$_GET['sid']; $data['client']=$clientname; - $data['amountunreceived'] = $this->cashbook_model->unreceived($clientname); + $data['amountunreceived'] = $this->cashbook_model->unreceived($clientname,$fdate,$tdate,$fa,$aa,$m); } $data['finyear']=$this->cashbook_model->report_finyearamountunreceived(); $data['getcustomer'] = $this->cashbook_model->getcustomer(); diff --git a/application/logs/log-2018-10-31.php b/application/logs/log-2018-10-31.php index 6e990c4a..5e983b50 100644 --- a/application/logs/log-2018-10-31.php +++ b/application/logs/log-2018-10-31.php @@ -2333,3 +2333,5574 @@ ERROR - 2018-10-31 12:15:00 --> Severity: Notice --> Undefined variable: t C:\x ERROR - 2018-10-31 12:15:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankinvoicesettlement.php 240 ERROR - 2018-10-31 12:15:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankinvoicesettlement.php 247 ERROR - 2018-10-31 12:15:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankinvoicesettlement.php 247 +ERROR - 2018-10-31 12:18:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 12:18:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 12:18:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-10-31 12:18:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-10-31 12:18:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-10-31 12:18:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-31 12:18:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-10-31 12:18:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-31 12:18:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-31 12:18:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-31 12:18:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-10-31 12:18:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-10-31 12:18:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-10-31 12:19:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 12:19:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 12:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-10-31 12:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-10-31 12:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-31 12:19:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-31 12:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-31 12:19:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-31 12:19:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-10-31 12:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-10-31 12:19:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-10-31 12:28:17 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 12:28:17 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 12:28:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:18 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 12:28:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 12:28:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 12:28:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 12:33:33 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2018-10-31 12:33:33 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2018-10-31 12:33:33 --> Unable to connect to the database +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-10-31 13:10:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-31 13:10:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-31 13:10:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-31 13:10:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-31 13:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-10-31 13:11:50 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:11:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:11:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:12:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 184 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 185 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 171 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 172 +ERROR - 2018-10-31 13:12:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:12:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:12:19 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:18:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 186 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 187 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 193 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:18:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 186 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 187 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 193 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 173 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 174 +ERROR - 2018-10-31 13:18:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 175 +ERROR - 2018-10-31 13:23:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:23:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:23:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 190 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 197 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:44 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:23:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:24:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:24:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:24:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:24:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:24:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:24:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 190 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 197 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:24:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:25:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 190 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 197 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:28:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:28:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:28:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:29:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:29:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:29:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:35:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:35:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:36:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:36:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:36:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:36:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:36:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:37:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:37:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:37:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:37:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:37:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:37:17 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:38:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:38:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:38:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:38:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:38:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:44:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:44:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:45:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:17 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:45:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:45:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:45:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:45:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:45:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:20 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:46:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:47:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:47:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:47:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:47:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:48:00 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:48:00 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:48:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:05 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 13:48:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 13:48:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-10-31 13:48:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-10-31 13:48:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:48:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 13:48:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:48:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:48:55 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:48:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:48:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:49:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:18 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:49:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:49:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:49:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:56 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:49:59 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:00 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:50:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:50:27 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 13:50:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:50:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:50:32 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:51:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:51:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:52:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:52:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:53:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:53:56 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:53:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:53:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:56:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:56:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:58:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 13:58:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 14:02:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 14:02:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:10:17 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2018-10-31 15:10:18 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2018-10-31 15:10:18 --> Unable to connect to the database +ERROR - 2018-10-31 15:10:49 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 15:10:49 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:10:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:54 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:56 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:10:56 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:11:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:11:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:11:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:11:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:11:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:12:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:12:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:12:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:12:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:12:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:12:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:12:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:12:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:12:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:12:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:12:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:14:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:05 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:14:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:15:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:15:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:15:34 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:15:34 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:15:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:15:35 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:15:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:15:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:15:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:15:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:15:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:16:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:17:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:09 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:17:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:17:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:18:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:18:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:18:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:18:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:52 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:18:55 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:18:55 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:18:55 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:18:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:05 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 15:19:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:19:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 15:19:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:12 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:13 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:19:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:19:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:19:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:16 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:19:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 15:19:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-10-31 15:19:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-10-31 15:19:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-10-31 15:19:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:20:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 15:20:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:20:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:20:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:21:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:21:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:21:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:21:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:21:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:33 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:21:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:21:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:21:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:21:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:22:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:22:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:22:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:29:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:29:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:57 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:58 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:29:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:29:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:29:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:30:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:30:09 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:30:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1591 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:30:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:30:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:30:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:30:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:31:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:31:33 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:31:33 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:31:33 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:31:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:31:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:31:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:31:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:31:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:31:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:31:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:31:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:31:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:31:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:31:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:31:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:31:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:31:47 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:31:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:31:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:31:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:32:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:32:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:32:28 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:36 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:32:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:32:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:32:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:33:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:33:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:33:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:14 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:33:15 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:35:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:35:10 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:36:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:36:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:36:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:36:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:36:18 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:36:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:33 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:36:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:37:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:37:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:37:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:37:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:37:46 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:38:00 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-10-31 15:38:00 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:38:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:06 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:38:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:38:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:22 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:22 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:38:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:38:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:38:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:39:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:39:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:39:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:39:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:39:08 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:39:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:39:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:39:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:40:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:40:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:40:20 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:40:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:40:20 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:40:20 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:21 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:40:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:31 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:40:32 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:41:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:41:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:41:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:47:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:47:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:47:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:47:16 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:47:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:47:16 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:47:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:47:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:47:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:47:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:47:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:47:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:47:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:47:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:50:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:50:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:50:49 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 840 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:50:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:50 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:50:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:51:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-10-31 15:51:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:51:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-10-31 15:51:41 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-10-31 15:51:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-10-31 15:51:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-10-31 15:51:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-10-31 15:51:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-10-31 15:51:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-10-31 15:51:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-10-31 15:51:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:51:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-10-31 15:51:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:51:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-10-31 15:51:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:51:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:51:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-10-31 15:51:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 diff --git a/application/logs/log-2018-11-01.php b/application/logs/log-2018-11-01.php new file mode 100644 index 00000000..cda03aec --- /dev/null +++ b/application/logs/log-2018-11-01.php @@ -0,0 +1,2945 @@ + + +ERROR - 2018-11-01 06:10:37 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-11-01 06:10:37 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:10:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:39 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:10:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:13:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 06:13:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:13:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:13:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:13:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:23 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:24 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:13:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:13:37 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:14:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:14:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:14:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:14:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:14:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:14:59 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:15:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:16 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:15:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:15:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 06:15:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 06:15:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:15:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:15:41 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:15:41 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:15:41 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 06:15:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:15:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:16:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:41 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:16:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 06:16:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:16:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:16:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:17:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$iwFpath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 271 +ERROR - 2018-11-01 06:17:13 --> Severity: Notice --> Undefined property: stdClass::$poFilePath C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 286 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:19:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 292 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:19:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 276 +ERROR - 2018-11-01 06:21:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:21:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:21:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:21:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:21:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:24:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:24:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-11-01 06:24:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 2 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:24:59 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:00 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:01 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:03 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:05 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 176 +ERROR - 2018-11-01 06:25:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankdebit.php 178 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:51 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:52 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1172 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1181 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 1248 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 8 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 197 +ERROR - 2018-11-01 06:25:54 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 235 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 06:28:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:28:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:28:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:28:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:28:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:28:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:28:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:28:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:28:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:28:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:29:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:29:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:29:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:29:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:29:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:29:18 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:29:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:29:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:29:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:29:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:29:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:30:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:30:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:30:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:30:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:30:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:40:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:40:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:40:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:40:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:40:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:41:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:41:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:41:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:41:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:41:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:43:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:43:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:44:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:44:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:44:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:44:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:45:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:45:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:45:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:45:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:45:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:58:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:58:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:58:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:58:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:58:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:58:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:58:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 06:58:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 06:58:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 06:58:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:10 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 271 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 271 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 271 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 271 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:10 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 250 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 265 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 250 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 265 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 250 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 265 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined property: stdClass::$igrfile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 250 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined property: stdClass::$pofile C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 265 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 06:59:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:01:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:01:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:02:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:02:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:02:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:02:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:02:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:02:40 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:02:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:02:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:02:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:02:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:02:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:05:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:05:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:07:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:07:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:12:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:12:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:12:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:12:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:12:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:12:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:12:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:12:43 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:43 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:43 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:43 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:12:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:12:49 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:49 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:49 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:12:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:47 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 07:16:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 07:16:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 07:16:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 07:16:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 07:17:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:17:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 11 +ERROR - 2018-11-01 07:17:03 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:17:03 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:17:03 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:17:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcash.php 242 +ERROR - 2018-11-01 07:18:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:18:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:18:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:18:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:18:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:19:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:19:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:19:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:19:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:19:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:19:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:26:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:26:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:26:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:26:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:26:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:27:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-11-01 07:27:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-11-01 07:27:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-11-01 07:27:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-11-01 07:27:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-11-01 07:27:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-11-01 07:27:17 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-11-01 07:27:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 251 +ERROR - 2018-11-01 07:27:17 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-11-01 07:27:17 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 258 +ERROR - 2018-11-01 07:27:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-11-01 07:27:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountreceived.php 10 +ERROR - 2018-11-01 07:27:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:27:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:27:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:27:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:27:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:49:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:49:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:49:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:49:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:49:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:50:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:50:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:50:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:50:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 07:50:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 07:50:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 07:50:42 --> Severity: Notice --> Undefined variable: cb C:\xampp\htdocs\siddharth_application\application\views\bankcashnew.php 395 +ERROR - 2018-11-01 07:50:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankcashnew.php 395 +ERROR - 2018-11-01 07:50:42 --> Severity: Notice --> Undefined variable: supplier C:\xampp\htdocs\siddharth_application\application\views\bankcashnew.php 992 +ERROR - 2018-11-01 07:51:17 --> Severity: Notice --> Use of undefined constant CREDIT - assumed 'CREDIT' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 362 +ERROR - 2018-11-01 07:51:17 --> Severity: Notice --> Use of undefined constant RECEIPT - assumed 'RECEIPT' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 364 +ERROR - 2018-11-01 07:51:17 --> Severity: Notice --> Use of undefined constant CREDIT - assumed 'CREDIT' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 365 +ERROR - 2018-11-01 07:51:17 --> Severity: Notice --> Use of undefined constant Bank - assumed 'Bank' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 439 +ERROR - 2018-11-01 07:51:17 --> Severity: Notice --> Use of undefined constant Bank - assumed 'Bank' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 441 +ERROR - 2018-11-01 07:51:17 --> Severity: Notice --> Use of undefined constant Bank - assumed 'Bank' C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 504 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\controllers\cashbook.php 971 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 07:51:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 2 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 85 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 86 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 87 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 137 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 07:51:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 138 +ERROR - 2018-11-01 07:51:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 07:51:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankstatement.php 139 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:52:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:52:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:53:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:53:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:53:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:53:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:53:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:53:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:53:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:53:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:53:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 07:54:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcredit.php 11 +ERROR - 2018-11-01 07:54:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\banksettlementcredit.php 11 +ERROR - 2018-11-01 07:54:06 --> Severity: Notice --> Undefined variable: balancetoclear C:\xampp\htdocs\siddharth_application\application\views\banksettlementcredit.php 243 +ERROR - 2018-11-01 07:54:06 --> Severity: Notice --> Undefined variable: bankamount C:\xampp\htdocs\siddharth_application\application\views\banksettlementcredit.php 243 +ERROR - 2018-11-01 07:54:06 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\banksettlementcredit.php 243 +ERROR - 2018-11-01 07:54:06 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\banksettlementcredit.php 243 +ERROR - 2018-11-01 07:59:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 07:59:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-11-01 07:59:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:03:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-11-01 08:03:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-11-01 08:03:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 2 +ERROR - 2018-11-01 08:03:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 2 +ERROR - 2018-11-01 08:03:53 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 78 +ERROR - 2018-11-01 08:03:53 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 80 +ERROR - 2018-11-01 08:03:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 194 +ERROR - 2018-11-01 08:03:53 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankamountunreceived.php 195 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 158 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 164 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:06:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunreceivedsupp.php 157 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 08:12:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:12:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:13:21 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-11-01 08:13:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 08:13:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:23 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:13:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 08:14:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 08:14:45 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:46 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:47 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:14:48 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:14:49 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:14:49 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:49 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:49 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:49 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:14:49 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:06 --> Severity: Notice --> Undefined variable: Supplierid C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 676 +ERROR - 2018-11-01 08:16:06 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\models\cashbook_model.php 683 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 08:16:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 2 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 87 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 88 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: ta C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 89 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 90 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 91 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 92 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 192 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 198 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 177 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 178 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 179 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankunpaidsupp.php 191 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 08:16:18 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:16:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 08:17:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 2 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 75 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 238 +ERROR - 2018-11-01 08:17:27 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\siddharth_application\application\views\bankamountunpaid.php 240 +ERROR - 2018-11-01 08:17:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 08:17:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 2 +ERROR - 2018-11-01 08:17:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:37 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:37 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:37 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 211 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 217 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 210 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:17:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankpaidsupp.php 263 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 08:17:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:17:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 08:20:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 10 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 242 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:20:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\bankamountpaid.php 285 +ERROR - 2018-11-01 08:20:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 08:20:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 2 +ERROR - 2018-11-01 08:20:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:32 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:32 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:32 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 216 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 222 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 215 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: m C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 +ERROR - 2018-11-01 08:20:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\siddharth_application\application\views\bankreceivedsupp.php 268 diff --git a/application/models/cashbook_model.php b/application/models/cashbook_model.php index 8b159cd1..327f03d9 100644 --- a/application/models/cashbook_model.php +++ b/application/models/cashbook_model.php @@ -782,7 +782,7 @@ $sql.="group by sd.SupplierName"; return $query->result(); } -function amountunpaid($supplierid) +function amountunpaid($supplierid,$fa,$aa,$m,$fdate,$tdate) { $sql="select im.IGRNO as igrn,pm.POType as potype,im.PONO as PONO,im.IGRNO,id.IGRItemNo,im.MaterialRcvdDate,im.DeliveryChellanDate,im.CreatedDate,br.Balancetopay,br.Amountpaid,sd.SupplierName as SupplierName,bu.FilePath as poFilePath ,bu.BillNo,inward.FilePath as iwFpath, sd.SupplierID,im.DeliveryChellanOrInvoiceNo,DATEDIFF(CURDATE(),id.CreatedDate)as days, @@ -836,6 +836,29 @@ left join T_Bankporeport br on br.IGRLineItemNo=id.IGRItemNo left join T_Inwardgateregister_fileupload inward on inward.IGRNO =im.IGRNO left join T_PurchaseOrder_BillUpload bu on bu.PONO=pm.PONO where im.IGRStatus = 'ST027' and id.BankStatus ='ST072' and sd.SupplierID='".$supplierid."'"; + + if ($fa and $aa != ''){ + + //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; + $sql.=" and (im.MaterialRcvdDate >= '".$fa."-04-01' and im.MaterialRcvdDate <= '".$aa."-03-31')"; + + } + if ($m!= ''){ + + //$sql.="and monthname(im.CreatedDate) = '".$m."'"; + $sql.="and monthname(im.MaterialRcvdDate) = '".$m."'"; + + } + + + if ($fdate and $tdate != ''){ + $fromd= date("Y-m-d",strtotime($fdate)); + $tod=date("Y-m-d",strtotime($tdate)); + + $sql.="and date(im.MaterialRcvdDate) >= '".$fromd."' + and date(im.MaterialRcvdDate) <= '".$tod."'"; + + } $sql.="group by id.IGRItemNo"; //echo $sql; $query = $this->db->query($sql); @@ -1235,7 +1258,7 @@ function receiptdata() } - function mappingcash($accountcode) + function mappingcash($accountcode,$fa,$aa,$m,$fdate,$tdate) { $this->db->select('ie.date,ie.bankid,ie.cashtype,ie.amounttype,ie.total,ac.name,totalbankamount,ie.id'); $this->db->from ('t_income_expense as ie'); @@ -1243,7 +1266,27 @@ function receiptdata() $this->db->where('ie.account_code',$accountcode); $this->db->where('ie.amounttype','DEBIT'); $this->db->where('IsActive',1); - //$this->db->group_by('mid'); + if ($fa and $aa != ''){ + + //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; + $year="(ie.date >= '".$fa."-04-01' and ie.date <= '".$aa."-03-31')"; + $this->db->where($year); + } + if ($m!= ''){ + //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan); + $month="monthname(ie.date) = '".$m."'"; + $this->db->where($month); + // $sql.="and monthname(bm.Podate) = '".$m."'"; + + } + if ($fdate and $tdate != ''){ + $fromdate= date("Y-m-d",strtotime($fdate)); + $todate=date("Y-m-d",strtotime($tdate)); + $date = "date(ie.date) >= '".$fromdate."' + and date(ie.date) <= '".$todate."'"; + $this->db->where($date); + } + $query = $this->db->get(); return $query->result(); @@ -1274,7 +1317,7 @@ function receiptdata() return $query->result(); } - function mappingcashreceived($accountcode) + function mappingcashreceived($accountcode,$fdate,$tdate,$fa,$aa,$m) { $this->db->select('ie.date,ie.bankid,ie.cashtype,ie.amounttype,ie.total,ac.name,totalbankamount,ie.id'); $this->db->from ('t_income_expense as ie'); @@ -1282,6 +1325,26 @@ function receiptdata() $this->db->where('ie.account_code',$accountcode); $this->db->where('ie.amounttype','CREDIT'); $this->db->where('IsActive',1); + if ($fa and $aa != ''){ + + //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; + $year="(ie.date >= '".$fa."-04-01' and ie.date <= '".$aa."-03-31')"; + $this->db->where($year); + } + if ($m!= ''){ + //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan); + $month="monthname(ie.date) = '".$m."'"; + $this->db->where($month); + // $sql.="and monthname(bm.Podate) = '".$m."'"; + + } + if ($fdate and $tdate != ''){ + $fromdate= date("Y-m-d",strtotime($fdate)); + $todate=date("Y-m-d",strtotime($tdate)); + $date = "date(ie.date) >= '".$fromdate."' + and date(ie.date) <= '".$todate."'"; + $this->db->where($date); + } //$this->db->group_by('mid'); $query = $this->db->get(); return $query->result(); @@ -1593,7 +1656,7 @@ function receiptdata() return TRUE; } - function paided($supplierid) + function paided($supplierid,$fa,$aa,$m,$fdate,$tdate) { $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, @@ -1603,7 +1666,27 @@ function receiptdata() $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.SupplierID',$supplierid); - $this->db->where('bm.IsActive',1); + $this->db->where('bm.IsActive',1); + if ($fa and $aa != ''){ + + //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; + $year="(bm.Podate >= '".$fa."-04-01' and bm.Podate <= '".$aa."-03-31')"; + $this->db->where($year); + } + if ($m!= ''){ + //$this->db->where('MONTH(pel.tgl_pembelian)',$bulan); + $month="monthname(bm.Podate) = '".$m."'"; + $this->db->where($month); + // $sql.="and monthname(bm.Podate) = '".$m."'"; + + } + if ($fdate and $tdate != ''){ + $fromdate= date("Y-m-d",strtotime($fdate)); + $todate=date("Y-m-d",strtotime($tdate)); + $date = "date(bm.Podate) >= '".$fromdate."' + and date(bm.Podate) <= '".$todate."'"; + $this->db->where($date); + } $this->db->group_by('bm.IGRLineItemNo'); $query = $this->db->get(); return $query->result(); @@ -1765,7 +1848,7 @@ function receiptdata() // // return $result; // } - function received($clientid) + function received($clientid,$fdate,$tdate,$fa,$aa,$m) { $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'); @@ -1773,6 +1856,23 @@ function receiptdata() $this->db->join('T_bankreport br','br.ID=bm.bankid'); $this->db->where('bm.IsActive',1); $this->db->where('bm.customerid',$clientid); + if ($fa and $aa != ''){ + + //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; + $year="(bm.indate >= '".$fa."-04-01' and bm.indate <= '".$aa."-03-31')"; + $this->db->where($year); + } + if ($m!= ''){ + + //$sql.="and monthname(im.CreatedDate) = '".$m."'"; + $month="monthname(bm.indate) = '".$m."'"; + $this->db->where($month); + + } + if($fdate!='' && $tdate!='') + { + $this->db->where('bm.indate BETWEEN "'. date('Y-m-d', strtotime($fdate)). '" and "'. date('Y-m-d', strtotime($tdate)).'"'); + } //$this->db->group_by('invoiceno'); $query = $this->db->get(); return $query->result(); @@ -1826,7 +1926,7 @@ function receiptdata() $query = $this->db->get(); return $query->result(); } - function unreceived($clientname) + function unreceived($clientname,$fdate,$tdate,$fa,$aa,$m) { $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,ic.client_id'); @@ -1837,6 +1937,23 @@ function receiptdata() $this->db->where('iv.receivedstatus','ST066'); $this->db->where('iv.invoice_status_id','2'); $this->db->where('ic.client_id',$clientname); + if ($fa and $aa != ''){ + + //$sql.=" and (im.CreatedDate >= '".$fa."-04-01' and im.CreatedDate <= '".$aa."-03-31')"; + $year="(iv.invoice_date_created >= '".$fa."-04-01' and iv.invoice_date_created <= '".$aa."-03-31')"; + $this->db->where($year); + } + if ($m!= ''){ + + //$sql.="and monthname(im.CreatedDate) = '".$m."'"; + $month="monthname(iv.invoice_date_created) = '".$m."'"; + $this->db->where($month); + + } + if($fdate!='' && $tdate!='') + { + $this->db->where('iv.invoice_date_created BETWEEN "'. date('Y-m-d', strtotime($fdate)). '" and "'. date('Y-m-d', strtotime($tdate)).'"'); + } // $this->db->where('iv.receivedstatus','ST066'); $this->db->group_by('iva.invoice_id'); diff --git a/application/views/bankamountpaid.php b/application/views/bankamountpaid.php index 0445cd92..bf7b125e 100644 --- a/application/views/bankamountpaid.php +++ b/application/views/bankamountpaid.php @@ -186,7 +186,7 @@ if(!empty($amountpaid))
+ value="View Payable">
diff --git a/application/views/bankamountunpaid.php b/application/views/bankamountunpaid.php index 747dd94f..dd130477 100644 --- a/application/views/bankamountunpaid.php +++ b/application/views/bankamountunpaid.php @@ -192,7 +192,7 @@ foreach($financialyear as $item)
- +
@@ -259,10 +259,10 @@ foreach($financialyear as $item) - DeliveryChellanDate),'d-m-Y');?> + MaterialRcvdDate),'d-m-Y');?> PONO?> - CreatedDate),'d-m-Y');?> + DeliveryChellanDate),'d-m-Y');?> IGRNO?> IGRItemNo?> diff --git a/application/views/bankpaidsupp.php b/application/views/bankpaidsupp.php index 4358f159..159bca15 100644 --- a/application/views/bankpaidsupp.php +++ b/application/views/bankpaidsupp.php @@ -165,7 +165,7 @@ foreach($financialyear as $item)
- +
@@ -207,7 +207,7 @@ foreach($financialyear as $item) - Suppliername?> + Suppliername?> @@ -260,7 +260,7 @@ foreach($financialyear as $item) ?> - + diff --git a/application/views/bankreceivedsupp.php b/application/views/bankreceivedsupp.php index 9c26e276..7d93d572 100644 --- a/application/views/bankreceivedsupp.php +++ b/application/views/bankreceivedsupp.php @@ -212,7 +212,7 @@ foreach($financialyear as $item) - customername?> + customername?> @@ -265,7 +265,7 @@ foreach($financialyear as $item) ?> - + diff --git a/application/views/bankunpaidsupp.php b/application/views/bankunpaidsupp.php index 58b1229c..73fa8204 100644 --- a/application/views/bankunpaidsupp.php +++ b/application/views/bankunpaidsupp.php @@ -85,6 +85,11 @@ foreach($financialyear as $item)
+
@@ -150,6 +155,7 @@ foreach($financialyear as $item)

+ @@ -177,11 +183,12 @@ foreach($financialyear as $item) if($status !='ST057') { ?> - - + + + - + diff --git a/application/views/bankunreceivedsupp.php b/application/views/bankunreceivedsupp.php index 5fd448c5..ce54025a 100644 --- a/application/views/bankunreceivedsupp.php +++ b/application/views/bankunreceivedsupp.php @@ -154,7 +154,7 @@ - + diff --git a/application/views/includes/header.php b/application/views/includes/header.php index 18a303f2..8e5fc70e 100644 --- a/application/views/includes/header.php +++ b/application/views/includes/header.php @@ -1526,7 +1526,7 @@ else{
  • - Amount Un Receivable Reports(Inv) + Amount Receivable Reports(Inv)
  • @@ -1643,7 +1643,7 @@ else{
  • - Amount Un Receivable Reports(Inv) + Amount Receivable Reports(Inv)
  • SupplierName?>SupplierName?> client_name?>client_name?>